00001 #ifndef BEAM_H_ 00002 #define BEAM_H_ 00003 00010 class Beam 00011 { 00012 private: 00013 float x; 00014 float y; 00015 float rotation; 00016 public: 00017 Beam(); 00018 void set(float x, float y, float rotation); 00019 int compose(char *sendingMessage, int sendingMessageSize); 00020 }; 00021 00022 #endif /* BEAM_H_ */